The key is the <buildTimeoutSeconds> tag when running the nant task. I basically doubled the time b/c I didn't want to bother it any further. Default is 600 seconds.
<nant>
<executable>C:\TDD\nant-0.85-rc3\bin\nant.exe</executable>
<buildFile>ndoc.build</buildFile>
<targetList>
<target>ndoc</target>
</targetList>
<buildTimeoutSeconds>1200</buildTimeoutSeconds>
</nant>
1 comment:
thanks for posting this!
I was having a problem with nant task timeout and that tag allowed to increase it
Post a Comment